home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / vi / vim-4.000 / vim-4 / vim-4.2 / src / proto / buffer.pro < prev    next >
Encoding:
Text File  |  1996-06-17  |  1.7 KB  |  33 lines

  1. /* buffer.c */
  2. int open_buffer __PARMS((void));
  3. void close_buffer __PARMS((WIN *win, BUF *buf, int free_buf, int del_buf));
  4. void buf_clear __PARMS((BUF *buf));
  5. void buf_freeall __PARMS((BUF *buf));
  6. char_u *do_bufdel __PARMS((int command, char_u *arg, int addr_count, int start_bnr, int end_bnr, int forceit));
  7. int do_buffer __PARMS((int action, int start, int dir, int count, int forceit));
  8. BUF *buflist_new __PARMS((char_u *fname, char_u *sfname, linenr_t lnum, int use_curbuf));
  9. int buflist_getfile __PARMS((int n, linenr_t lnum, int options));
  10. void buflist_getlnum __PARMS((void));
  11. BUF *buflist_findname __PARMS((char_u *fname));
  12. int buflist_findpat __PARMS((char_u *pattern, char_u *pattern_end));
  13. int ExpandBufnames __PARMS((char_u *pat, int *num_file, char_u ***file, int options));
  14. BUF *buflist_findnr __PARMS((int nr));
  15. char_u *buflist_nr2name __PARMS((int n, int fullname, int helptail));
  16. void buflist_list __PARMS((void));
  17. int buflist_name_nr __PARMS((int fnum, char_u **fname, linenr_t *lnum));
  18. int setfname __PARMS((char_u *fname, char_u *sfname, int message));
  19. void setaltfname __PARMS((char_u *fname, char_u *sfname, linenr_t lnum));
  20. int buflist_add __PARMS((char_u *fname));
  21. void buflist_altlnum __PARMS((void));
  22. int otherfile __PARMS((char_u *fname));
  23. void fileinfo __PARMS((int fullname, int shorthelp, int dont_truncate));
  24. void cursor_pos_info __PARMS((void));
  25. void col_print __PARMS((char_u *buf, int col, int vcol));
  26. void maketitle __PARMS((void));
  27. void resettitle __PARMS((void));
  28. char_u *fix_fname __PARMS((char_u *fname));
  29. void fname_expand __PARMS((char_u **fname, char_u **sfname));
  30. void do_arg_all __PARMS((int count));
  31. void do_buffer_all __PARMS((int count, int all));
  32. void do_modelines __PARMS((void));
  33.